home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 6 / Night Owl's Shareware - PDSI-006 - Night Owl Corp (1990).iso / 047a / magnify1.zip / INSTALL.BAT < prev    next >
DOS Batch File  |  1991-09-04  |  2KB  |  83 lines

  1. ECHO OFF
  2. BIG
  3. IF ERRORLEVEL 1 GOTO EXIT
  4. IF EXIST BIGTEST.TXT GOTO DISKOK
  5. LOCATE 1,0
  6. ECHO You must make the disk containing
  7. ECHO the magnify files the default disk.
  8. PAUSE
  9. GOTO DONE
  10. :DISKOK
  11. IF NOT %1 == "" GOTO DESTOK
  12. ECHO You must supply a destination path
  13. ECHO for the Magnify files.  Enter
  14. ECHO   INSTALL dest
  15. ECHO where dest is the destination path.
  16. PAUSE
  17. GOTO DONE
  18. :DESTOK
  19. MD %1
  20. CLS
  21. TYPE BIGTEST.TXT
  22. LOCATE 2,24
  23. OPTION Y-N
  24. IF ERRORLEVEL 1 GOTO USEBIG
  25. SMALL
  26. BIG1
  27. LOCATE 1,0
  28. ECHO You must use special versions of the
  29. ECHO Magnify files on your system.
  30. ECHO Copying special files...
  31. COPY BIG1.COM %1\BIG.COM >NUL
  32. COPY BV1.COM %1\BV.COM >NUL
  33. COPY MAGNIFY1.COM %1\MAGNIFY.COM >NUL
  34. COPY SMALL.COM %1\SMALL.COM >NUL
  35. COPY MAGNIFY.DOC %1\MAGNIFY.DOC >NUL
  36. COPY MAGNIFY.PRN %1\MAGNFIY.PRN >NUL
  37. ECHO Done!
  38. PAUSE
  39. CLS
  40. ECHO Do you want to
  41. ECHO 1. Read the documentation now?
  42. ECHO 2. Quit?
  43. ECHO Type 1 or 2:
  44. LOCATE 3,14
  45. OPTION 1-2
  46. IF ERRORLEVEL 1 GOTO DONE
  47. CLS
  48. ECHO Use Page Down or down arrow
  49. ECHO to move down in the file.
  50. ECHO Press Esc when you are done.
  51. PAUSE
  52. BV1 MAGNIFY.DOC
  53. GOTO DONE
  54. :USEBIG
  55. CLS
  56. LOCATE 1,0
  57. ECHO Copying standard files...
  58. COPY BIG.COM %1\BIG.COM >NUL
  59. COPY BV.COM %1\BV.COM >NUL
  60. COPY MAGNIFY.COM %1\MAGNIFY.COM >NUL
  61. COPY SMALL.COM %1\SMALL.COM >NUL
  62. COPY MAGNIFY.DOC %1\MAGNIFY.DOC >NUL
  63. COPY MAGNIFY.PRN %1\MAGNFIY.PRN >NUL
  64. ECHO Done!
  65. PAUSE
  66. CLS
  67. ECHO Do you want to
  68. ECHO 1. Read the documentation now?
  69. ECHO 2. Quit?
  70. ECHO Type 1 or 2:
  71. LOCATE 3,14
  72. OPTION 1-2
  73. IF ERRORLEVEL 1 GOTO DONE
  74. CLS
  75. ECHO Use Page Down or down arrow
  76. ECHO to move down in the file.
  77. ECHO Press Esc when you are done.
  78. PAUSE
  79. BV MAGNIFY.DOC
  80. :DONE
  81. SMALL
  82. :EXIT
  83.